home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Method / Method.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  126 b   |  13 lines  |  [TEXT/CWIE]

  1. // Method.h
  2.  
  3. #ifndef Method_h
  4. #define Method_h
  5.  
  6. class Method
  7.   {
  8.     public:
  9.         virtual void operator()() const = 0;
  10.   };
  11.  
  12. #endif
  13.